home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 8 / hdtst484.zip / BOOTLOAD.DOC < prev    next >
Text File  |  1988-11-27  |  5KB  |  126 lines

  1.           
  2.           Documentation for BOOTLOAD              Copyright 1988, P. R. Fletcher          ___________________________            _______________________________
  3.           
  4.           
  5.                                        INTRODUCTION                                       ____________
  6.           
  7.           BOOTLOAD is part of the HDTEST package, and is currently only
  8.           distributed with the Registered version of that software. The program
  9.           and documentation may only be used or copied under the conditions
  10.           laid down for HDTEST in the REGINFO.DOC or UPDINFO.DOC file on the
  11.           disk on which the Registered version of the software is distributed.
  12.           The BOOTLOAD program is Copyright by Peter R. Fletcher, 1988. All
  13.           rights reserved. It was written in assembly language and assembled
  14.           with the Microsoft MASM assembler (V5.1).
  15.           
  16.           BOOTLOAD is used to (re)create the HDTEST distribution diskette's
  17.           special boot sector (see the HDTEST documentation). Its most important
  18.           use is in preparing a pre-boot diskette which can be used on a system
  19.           that does not possess the appropriate type of floppy drive for the
  20.           distribution diskette, but it can also be used to add the special boot
  21.           sector to a working diskette which is to contain (perhaps) just the
  22.           HD .EXE files. BOOTLOAD will function on all normal DOS-compatible
  23.           removable media (3.5", 5.25", and 8" floppies), under DOS versions 2.x
  24.           through 4.0.
  25.           
  26.           
  27.                                     USING THE PROGRAM                                    _________________
  28.           
  29.           1) If using a "virgin" diskette, first use the DOS FORMAT command to
  30.           format it. BOOTLOAD may also be safely used on a diskette which
  31.           contains data.
  32.           
  33.           2) With BOOTLOAD.COM either in your default directory or in your PATH,
  34.           give the command "BOOTLOAD [dev:]", where dev is the single-letter
  35.           device name of the drive on which you wish to access the diskette.
  36.           
  37.           3) Follow the instructions that are displayed on the screen!
  38.           
  39.           BOOTLOAD will not let you modify the boot sector of a fixed disk, and
  40.           will respond appropriately to most other likely error conditions. If
  41.           you do not specify a device, it will default to drive A:.
  42.           
  43.           
  44.                                LIMITATIONS AND RESTRICTIONS                               ____________________________
  45.           
  46.           BOOTLOAD should not (strictly speaking) require any services which
  47.           are unique to DOS 2.x or above, but it has not been tested under DOS
  48.           1.x. It uses only documented DOS services and requires very little
  49.           memory - it should, therefore, run on virtually any hardware. Since it
  50.           uses INT 25 and INT 26, it will not run in the DOS compatibility box                                          ___                                 
  51.           under OS/2.
  52.           
  53.           
  54.                                   ADDITIONAL INFORMATION                                  ______________________
  55.           
  56.           Like all well-behaved programs (!), BOOTLOAD signals successful
  57.           completion by returning to DOS with the ERRORLEVEL variable set to
  58.           zero. Different small positive values are returned for various errors.
  59.           
  60.           BOOTLOAD.COM is 32000 bytes long, but it consists mainly of empty
  61.           space. This is because the code on a diskette's boot sector has to run
  62.           
  63.           Documentation for BOOTLOAD              Copyright 1988, P. R. Fletcher          ___________________________            _______________________________
  64.           
  65.           
  66.           at 0:7C00 (Hex) and the easiest way to manage this is to assemble it
  67.           at an ORG of 7C00 in the default segment. Since the loader code is
  68.           assembled at an ORG of 100, there is a huge amount of unused space in
  69.           the memory image that is saved as the .COM file. I regard this as
  70.           acceptable in a program that will be used rarely and can be saved in
  71.           in an archive or in .CQM form when not needed.
  72.           
  73.           Comments, suggestions, etc. may be addressed to the author at:
  74.           
  75.                    1515 West Montgomery Avenue
  76.                    Rosemont
  77.                    PA 19010
  78.                    U.S.A.
  79.           
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.           
  124.           
  125.                                           Page 2                                
  126.